home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr49 / splint.zip / MAKEFILE.BSD < prev    next >
Text File  |  1993-05-19  |  308b  |  15 lines

  1. #
  2. # Makefile for splint/UNIX
  3. #
  4. all: splint
  5.  
  6. splint: splay.o splint.o getopt.o
  7.     cc -O -DBSD -o splint splay.o splint.o getopt.o
  8.  
  9. splay.o: splay.c splint.h
  10.     cc -O -DBSD -c splay.c
  11. splint.o: splint.c splint.h getopt.h
  12.     cc -O -DBSD -c splint.c
  13. getopt.o: getopt.c getopt.h
  14.     cc -O -DBSD -c getopt.c
  15.